aboutsummaryrefslogtreecommitdiff
path: root/front-end/src/views/[...all].vue
blob: 37439d1f7170d19760ac264c7c79b13d3b6b99f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<template>
    <div id="default-template" class="flex px-4 py-24 app-component-entry">
        <div class="mx-auto">
            <h2 class="text-center">404 - Resource not found</h2>
            <p>
                The resource you are looking for could not be found on the server. Please check the URL and try again,
                or go back <router-link class="link" to="/">home</router-link>
            </p>
        </div>
    </div>
</template>

<script setup lang="ts">
import { useStore } from '../store';

const { setPageTitle } = useStore()
setPageTitle('404 - Resource not found')

</script>

<style lang="scss">
#default-template{

}
</style>